:root {
    --maroon-dark: #8B1E23;
    --gold: #F9BF29;
    --gold-dark: #c49b44;
    --text-dark: #1C1C1E;
    --white: #ffffff;
}
html,body{
    box-sizing: border-box !important;
    margin: 0px !important;
    padding:  0px !important;
}

/* hero section  */

.hero {
    background: #7C1122 !important;
    color: var(--text-light);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    animation: fadeInHero 1s ease-in;
}

@keyframes fadeInHero {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-img-wrap img {
    max-width: 480px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.intro-excerpt h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
}

.intro-excerpt p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f2f2f2;
}

#offerStatus {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-warning {
    background-color: #D2AF6F;
    color: #1C1C1E;
    border: none;
}

.btn-warning:hover {
    background-color: #b89557;
    color: #fff;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #8B1E23;
}

/* Responsive Styling */
@media (max-width: 992px) {
    .intro-excerpt h1 {
        font-size: 2rem;
    }

    .hero-img-wrap img {
        max-width: 100%;
    }

    .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}


/* About Section  */

:root {
    --maroon-dark: #8B1E23;
    --maroon-light: white;
    --gold: #D2AF6F;
    --text-color: #1C1C1E;
}

.about-section {
    background-color: var(--maroon-light);
    padding: 80px 20px;
    color: var(--text-color);
}

.about-section .container {
    max-width: 1200px;
    margin: auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--maroon-dark);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.btn-about {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--maroon-dark);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background-color: #a4162d;
    color: #fff;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 15px;
    }
}


/* SERVICES SECTION     */
.size {
    width: 70% !important;
    height: 400px !important;
}


/* ============================================================= PSHOP PAGE  ======================================================================================================================= */

/* product serch and explore section stylinng  */


/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    color: #8b1e23;
    margin-bottom: 35px;
}

.highlight {
    color: #70191d;
}

/* Search Input + Icon */
.search-container {
    position: relative;
    max-width: 420px;
    margin: 0 auto 30px;
}

.search-input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border-radius: 30px;
    border: 1px solid #ccc;
    font-size: 1rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #8b1e23;
    box-shadow: 0 0 0 3px rgba(139, 30, 35, 0.15);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.category-tabs button {
    padding: 10px 22px;
    background-color: #8b1e23;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.category-tabs button:hover,
.category-tabs button.active {
    background-color: #70191d;
    transform: translateY(-2px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.03);
}

.product-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 16px;
}

.cta-button {
    background-color: #8b1e23;
    color: #fff;
    border: none;
    padding: 12px 22px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #70191d;
}

/* Modal Styling */
.modal-content {
    border-radius: 20px;
}

.modal-header {
    border-bottom: none;
    padding: 1rem 1.5rem;
    background-color: #8b1e23;
    color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body img {
    max-height: 300px;
    object-fit: contain;
    border-radius: 12px;
}

.modal-body h4 {
    font-size: 1.5rem;
    color: #8b1e23;
    margin-bottom: 10px;
}

.modal-body p {
    font-size: 1rem;
    color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
        text-align: center;
    }

    .product-card img {
        height: 200px;
    }

    .search-container {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .search-input {
        font-size: 0.95rem;
        padding: 10px 15px 10px 40px;
    }

    .product-card h4 {
        font-size: 1.1rem;
    }

    .product-card p {
        font-size: 0.95rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 10px 18px;
    }

    .product-card img {
        height: 180px;
    }
}

/* Category Tabs */
.category-tabs-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.category-tabs {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    min-width: max-content;
}

.category-tabs button {
    white-space: nowrap;
    padding: 8px 16px;
    border: none;
    background-color: #70191d;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.category-tabs button:hover {
    opacity: 1px;
}

/* Optional: Hide scroll bar (still scrollable) */
.category-tabs-wrapper::-webkit-scrollbar {
    display: none;
}


/* center table text  */
.product-category-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 30px 0 20px;
    padding: 20px 0px !important;
    color: white;
    text-align: center;
    background-color: #d2ae6d;
    border-radius: 50px;
    margin-bottom: 60px !important;
    margin-top: 60px !important;
    width: 270px;
    margin-left: auto !important;
    margin-right: auto !important;
    font-family: Verdana, Geneva, Tahoma, sans-serif !important;
 
}
